home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / BUTTONS / RBUTTON / BPREG.PAS < prev    next >
Pascal/Delphi Source File  |  1996-11-05  |  316b  |  20 lines

  1. unit BPReg;
  2.  
  3. interface
  4.  
  5. procedure Register;
  6.  
  7. implementation
  8.  
  9. uses
  10.   Classes, Rbutton, Bpanel;
  11.  
  12. procedure Register;
  13. begin
  14.   RegisterComponents('Brendan',[TRoundButton,TBevelPanel]);
  15.   { to automatically place these components into a page, change
  16.     'Brendan' to the prefered location }
  17. end;
  18.  
  19. end.
  20.